home *** CD-ROM | disk | FTP | other *** search
/ The Fatted Calf / The Fatted Calf.iso / Applications / Graphics / StereoScope / Source / SterOptikonApp.h < prev    next >
Text File  |  1994-04-01  |  378b  |  17 lines

  1.  
  2. #import <appkit/Application.h>
  3. #import <sys/param.h>  //for MAXPATHLEN
  4.  
  5. @interface SterOptikonApp:Application
  6. {
  7.     char appDirectory[MAXPATHLEN];    /* The path to the application */
  8.     char openFileName[MAXPATHLEN];
  9. }
  10.  
  11. + new;
  12. - (const char *)appDirectory;
  13. - (BOOL)appAcceptsAnotherFile:sender;
  14. - (int)openFile:(const char *)filename ok:(int *)flag;
  15. - (char *)getInitialFile;
  16. @end
  17.